body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafc;
  margin: 0;
  padding: 0;
}

/* Founding Members Section Styles */
.founding-members {
    background: #fff;
    border-radius: 20px;
    margin: 40px auto;
    padding: 40px 30px;
    max-width: 1200px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    text-align: center;
}
.founding-members h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3651;
    margin-bottom: 10px;
}
.founding-members .subtitle {
    color: #6c757d;
    margin-bottom: 32px;
    font-size: 1.1rem;
}
.members-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.member-card {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically center image and info */
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 1100px;
    width: 100%;
    min-height: 380px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    height: 100%;
}

.member-info {
    flex: 1 1 0;
    padding: 48px 40px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Remove the background so container color is visible */
    background: none;
    min-width: 0;
}

.member-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #222;
    letter-spacing: -2px;
    line-height: 1;
}

.member-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.member-info hr {
    border: none;
    border-top: 2px solid #222;
    width: 100%;
    margin: 10px 0 18px 0;
}

.member-info p {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

.member-img {
    flex: 0 0 280px; /* Reduce width for better proportion */
    width: 280px;
    height: 280px;
    min-width: 180px;
    min-height: 180px;
    max-width: 320px;
    max-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
    background: transparent !important;
}

.member-img,
.member-img img {
    background: transparent !important;
    background-color: transparent !important;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Optional: make image round */
}

.member-container1 {
    background: #f8f3e9; /* warm beige */
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}
.member-container2 {
    background: #e6f2f7; /* soft blue */
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}
.member-container3 {
    background: #f3e9f8; /* light lavender */
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}
.member-container4 {
    background: #e9f8f3; /* mint green */
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}
.member-container5 {
    background: #f8e9e9; /* soft pink */
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .member-card {
        flex-direction: column-reverse;
        max-width: 98vw;
    }
    .member-img {
        width: 100%;
        min-height: 220px;
        height: 220px;
        max-width: 100vw;
    }
    .member-info {
        padding: 24px 16px 24px 16px;
    }
}